home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 296_01.zip / YTAB.H < prev   
C/C++ Source or Header  |  1993-04-01  |  1KB  |  64 lines

  1. #define IDENTIFIER    257
  2. #define CONSTANT    258
  3. #define STRING_LITERAL    259
  4. #define SIZEOF    260
  5. #define PTR_OP    261
  6. #define INC_OP    262
  7. #define DEC_OP    263
  8. #define LEFT_OP    264
  9. #define RIGHT_OP    265
  10. #define LE_OP    266
  11. #define GE_OP    267
  12. #define EQ_OP    268
  13. #define NE_OP    269
  14. #define AND_OP    270
  15. #define OR_OP    271
  16. #define MUL_ASSIGN    272
  17. #define DIV_ASSIGN    273
  18. #define MOD_ASSIGN    274
  19. #define ADD_ASSIGN    275
  20. #define SUB_ASSIGN    276
  21. #define LEFT_ASSIGN    277
  22. #define RIGHT_ASSIGN    278
  23. #define AND_ASSIGN    279
  24. #define XOR_ASSIGN    280
  25. #define OR_ASSIGN    281
  26. #define TYPE_NAME    282
  27. #define TYPEDEF    283
  28. #define EXTERN    284
  29. #define STATIC    285
  30. #define AUTO    286
  31. #define REGISTER    287
  32. #define CHAR    288
  33. #define SHORT    289
  34. #define INT    290
  35. #define LONG    291
  36. #define SIGNED    292
  37. #define UNSIGNED    293
  38. #define FLOAT    294
  39. #define DOUBLE    295
  40. #define CONST    296
  41. #define VOLATILE    297
  42. #define VOID    298
  43. #define STRUCT    299
  44. #define UNION    300
  45. #define ENUM    301
  46. #define ELIPSIS    302
  47. #define RANGE    303
  48. #define CASE    304
  49. #define DEFAULT    305
  50. #define IF    306
  51. #define ELSE    307
  52. #define SWITCH    308
  53. #define WHILE    309
  54. #define DO    310
  55. #define FOR    311
  56. #define GOTO    312
  57. #define CONTINUE    313
  58. #define BREAK    314
  59. #define RETURN    315
  60. #ifndef YYSTYPE
  61. #define YYSTYPE int
  62. #endif
  63. extern YYSTYPE yyval, yylval;
  64.